home *** CD-ROM | disk | FTP | other *** search
/ PC Open 107 / PC Open 107 CD 1.bin / CD1 / INTERNET / EMAIL / pop file / setup.exe / $_1_ / XML / Changes < prev    next >
Encoding:
Text File  |  2004-06-01  |  5.4 KB  |  100 lines

  1. Release 1.95.5 Fri Sep 6 2002
  2.         - Added XML_UseForeignDTD() for improved SAX2 support.
  3.         - Added XML_GetFeatureList().
  4.         - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.
  5.         - Use an incomplete struct instead of a void* for the parser
  6.           (may not retain).
  7.         - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected.
  8.         - Finally fixed bug where default handler would report DTD
  9.           events that were already handled by another handler.
  10.           Initial patch contributed by Darryl Miller.
  11.         - Removed unnecessary DllMain() function that caused static
  12.           linking into a DLL to be difficult.
  13.         - Added VC++ projects for building static libraries.
  14.         - Reduced line-length for all source code and headers to be
  15.           no longer than 80 characters, to help with AS/400 support.
  16.         - Reduced memory copying during parsing (SF patch #600964).
  17.         - Fixed a variety of bugs: see SF issues 580793, 434664,
  18.           483514, 580503, 581069, 584041, 584183, 584832, 585537,
  19.           596555, 596678, 598352, 598944, 599715, 600479, 600971.
  20.  
  21. Release 1.95.4 Fri Jul 12 2002
  22.         - Added support for VMS, contributed by Craig Berry.  See
  23.           vms/README.vms for more information.
  24.         - Added Mac OS (classic) support, with a makefile for MPW,
  25.           contributed by Thomas Wegner and Daryle Walker.
  26.         - Added Borland C++ Builder 5 / BCC 5.5 support, contributed
  27.           by Patrick McConnell (SF patch #538032).
  28.         - Fixed a variety of bugs: see SF issues 441449, 563184,
  29.           564342, 566334, 566901, 569461, 570263, 575168, 579196.
  30.         - Made skippedEntityHandler conform to SAX2 (see source comment)
  31.         - Re-implemented WFC: Entity Declared from XML 1.0 spec and
  32.           added a new error "entity declared in parameter entity":
  33.           see SF bug report 569461 and SF patch 578161
  34.         - Re-implemented section 5.1 from XML 1.0 spec:
  35.           see SF bug report 570263 and SF patch 578161
  36.  
  37. Release 1.95.3 Mon Jun 3 2002
  38.         - Added a project to the MSVC workspace to create a wchar_t
  39.           version of the library; the DLLs are named libexpatw.dll.
  40.         - Changed the name of the Windows DLLs from expat.dll to
  41.           libexpat.dll; this fixes SF bug #432456.
  42.         - Added the XML_ParserReset() API function.
  43.         - Fixed XML_SetReturnNSTriplet() to work for element names.
  44.         - Made the XML_UNICODE builds usable (thanks, Karl!).
  45.         - Allow xmlwf to read from standard input.
  46.         - Install a man page for xmlwf on Unix systems.
  47.         - Fixed many bugs; see SF bug reports 231864, 461380, 464837,
  48.           466885, 469226, 477667, 484419, 487840, 494749, 496505,
  49.           547350.  Other bugs which we can't test as easily may also
  50.           have been fixed, especially in the area of build support.
  51.  
  52. Release 1.95.2 Fri Jul 27 2001
  53.         - More changes to make MSVC happy with the build; add a single
  54.           workspace to support both the library and xmlwf application.
  55.         - Added a Windows installer for Windows users; includes
  56.           xmlwf.exe.
  57.         - Added compile-time constants that can be used to determine the
  58.           Expat version
  59.         - Removed a lot of GNU-specific dependencies to aide portability
  60.           among the various Unix flavors.
  61.         - Fix the UTF-8 BOM bug.
  62.         - Cleaned up warning messages for several compilers.
  63.         - Added the -Wall, -Wstrict-prototypes options for GCC.
  64.  
  65. Release 1.95.1 Sun Oct 22 15:11:36 EDT 2000
  66.         - Changes to get expat to build under Microsoft compiler
  67.         - Removed all aborts and instead return an UNEXPECTED_STATE error.
  68.         - Fixed a bug where a stray '%' in an entity value would cause an
  69.           abort.
  70.         - Defined XML_SetEndNamespaceDeclHandler. Thanks to Darryl Miles for
  71.           finding this oversight.
  72.         - Changed default patterns in lib/Makefile.in to fit non-GNU makes
  73.           Thanks to robin@unrated.net for reporting and providing an
  74.           account to test on.
  75.         - The reference had the wrong label for XML_SetStartNamespaceDecl.
  76.           Reported by an anonymous user.
  77.  
  78. Release 1.95.0 Fri Sep 29 2000
  79.         - XML_ParserCreate_MM
  80.                 Allows you to set a memory management suite to replace the
  81.                 standard malloc,realloc, and free.
  82.         - XML_SetReturnNSTriplet
  83.                 If you turn this feature on when namespace processing is in
  84.                 effect, then qualified, prefixed element and attribute names
  85.                 are returned as "uri|name|prefix" where '|' is whatever
  86.                 separator character is used in namespace processing.
  87.         - Merged in features from perl-expat
  88.                 o XML_SetElementDeclHandler
  89.                 o XML_SetAttlistDeclHandler
  90.                 o XML_SetXmlDeclHandler
  91.                 o XML_SetEntityDeclHandler
  92.                 o StartDoctypeDeclHandler takes 3 additional parameters:
  93.                         sysid, pubid, has_internal_subset
  94.                 o Many paired handler setters (like XML_SetElementHandler)
  95.                   now have corresponding individual handler setters
  96.                 o XML_GetInputContext for getting the input context of
  97.                   the current parse position.
  98.         - Added reference material
  99.         - Packaged into a distribution that builds a sharable library
  100.